type net/http.http2stream

28 uses

	net/http (current package)
		h2_bundle.go#L4281: 		streams:                     make(map[uint32]*http2stream),
		h2_bundle.go#L4458: 	streams                     map[uint32]*http2stream
		h2_bundle.go#L4507: type http2stream struct {
		h2_bundle.go#L4543: func (sc *http2serverConn) state(streamID uint32) (http2streamState, *http2stream) {
		h2_bundle.go#L4962: func (sc *http2serverConn) writeDataFromHandler(stream *http2stream, data []byte, endStream bool) error {
		h2_bundle.go#L5499: func (sc *http2serverConn) closeStream(st *http2stream, err error) {
		h2_bundle.go#L5746: func (st *http2stream) isPushed() bool {
		h2_bundle.go#L5752: func (st *http2stream) endStream() {
		h2_bundle.go#L5768: func (st *http2stream) copyTrailersToHandlerRequest() {
		h2_bundle.go#L5779: func (st *http2stream) onReadTimeout() {
		h2_bundle.go#L5789: func (st *http2stream) onWriteTimeout() {
		h2_bundle.go#L5932: func (st *http2stream) processTrailerHeaders(f *http2MetaHeadersFrame) error {
		h2_bundle.go#L5981: func (sc *http2serverConn) newStream(id, pusherID uint32, state http2streamState) *http2stream {
		h2_bundle.go#L5988: 	st := &http2stream{
		h2_bundle.go#L6017: func (sc *http2serverConn) newWriterAndRequest(st *http2stream, f *http2MetaHeadersFrame) (*http2responseWriter, *Request, error) {
		h2_bundle.go#L6082: func (sc *http2serverConn) newWriterAndRequestNoBody(st *http2stream, rp http2requestParam) (*http2responseWriter, *Request, error) {
		h2_bundle.go#L6157: func (sc *http2serverConn) newResponseWriter(st *http2stream, req *Request) *http2responseWriter {
		h2_bundle.go#L6265: func (sc *http2serverConn) writeHeaders(st *http2stream, headerData *http2writeResHeaders) error {
		h2_bundle.go#L6297: func (sc *http2serverConn) write100ContinueHeaders(st *http2stream) {
		h2_bundle.go#L6307: 	st *http2stream
		h2_bundle.go#L6314: func (sc *http2serverConn) noteBodyReadFromHandler(st *http2stream, n int, err error) {
		h2_bundle.go#L6324: func (sc *http2serverConn) noteBodyRead(st *http2stream, n int) {
		h2_bundle.go#L6335: func (sc *http2serverConn) sendWindowUpdate32(st *http2stream, n int32) {
		h2_bundle.go#L6340: func (sc *http2serverConn) sendWindowUpdate(st *http2stream, n int) {
		h2_bundle.go#L6363: 	stream        *http2stream
		h2_bundle.go#L6418: 	stream *http2stream
		h2_bundle.go#L6984: 	parent *http2stream
		h2_bundle.go#L10883: 	stream *http2stream